home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
blankery
/
blanker
/
source
/
blankers
/
fade
/
defaults.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-07-27
|
353b
|
19 lines
#include <exec/types.h>
#include <exec/ports.h>
#include "/defs.h"
#include "/utility.h"
struct fPrefObject { LONG Delay; };
VOID defaults( struct bMessage *Msg )
{
static struct fPrefObject fPO = { 15L };
Msg->bm_Mod = getTopScreenMode();
Msg->bm_Dep = getTopScreenDepth();
Msg->bm_Info = "Fade Module";
Msg->bm_Data = ( UBYTE * )( &fPO );
}